home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 11 Learning / 08 Manslow / TanksDoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-01  |  1.1 KB  |  48 lines

  1. //Tanks
  2. //Copyright John Manslow
  3. //29/09/2001
  4.  
  5. // TanksDoc.h : interface of the CTanksDoc class
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8.  
  9. class CTanksDoc : public CDocument
  10. {
  11. protected: // create from serialization only
  12.     CTanksDoc();
  13.     DECLARE_DYNCREATE(CTanksDoc)
  14.  
  15. // Attributes
  16. public:
  17.  
  18. // Operations
  19. public:
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CTanksDoc)
  23.     public:
  24.     virtual BOOL OnNewDocument();
  25.     virtual void Serialize(CArchive& ar);
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CTanksDoc();
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. protected:
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CTanksDoc)
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.